Crate wasmprinter
source ·Expand description
A crate to convert a WebAssembly binary to its textual representation in the WebAssembly Text Format (WAT).
This crate is intended for developer toolchains and debugging, supporting human-readable versions of a wasm binary. This can also be useful when developing wasm toolchain support in Rust for various purposes like testing and debugging and such.
Structs§
- Context used for printing a WebAssembly binary.
Functions§
- Prints an in-memory
wasm
binary blob into an in-memoryString
which is its textual representation. - Reads a WebAssembly
file
from the filesystem and then prints it into an in-memoryString
.